home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / RTANKSRC.ZIP / DTYPES.H < prev    next >
Encoding:
Text File  |  1995-03-07  |  232 b   |  11 lines

  1. typedef unsigned char BYTE;
  2.  
  3. typedef unsigned char byte;
  4.  
  5. typedef unsigned short WORD;
  6.  
  7. typedef signed long LONG;
  8.  
  9. typedef unsigned long DWORD;
  10.  
  11. typedef char * PSTR;
  12.  
  13. typedef int BOOL;
  14.  
  15.  
  16.  
  17. #define TRUE  1
  18.  
  19. #define FALSE 0
  20.  
  21.